home *** CD-ROM | disk | FTP | other *** search
Text File | 1984-07-16 | 3.8 KB | 86 lines | [TEXT/ttxt] |
-
- Forth Block File Conversion for Transfer.
-
- This text file describes a system for preparing MacForth Blocks
- files for transfer to systems such as CIS, and reconverting the
- files to Blocks files after transfer from other systems. A Forth
- blocks file is a continuous stream of text characters, not delimited
- by carriage returns or other separaters. Each Forth block occupies
- 1024 bytes of the file, starting on at (1024 * block number). Likewise,
- each line occupies 64 bytes.
-
- This format is inconvenient for transfer to line-oriented systems.
- The program "Convert" is a MacFORTH program to convert such block
- files to a line-oriented form. The format of such a converted file is:
-
- 1. Each screen is introduced by a line of the form
- ~Sn
- where n is the screen number in as many digits as required.
-
- 2. Each line starts with the three character ~nn , where nn is two
- digits, and is the line number (0<=nn<=15). Rarely, a Forth block will
- contain one or more characters not in the ASCII printable range
- (space thru tilde, $20 thru $7E). Any line containing such characters
- is represented in the form of hex pairs. Such lines begin with
- ~Hnn or ~-nn
- where the first 32 characters of the line are in the line starting with
- ~Hnn, and the remainder are in the line starting with ~-nn.
-
- Trailing blanks are not included in either normal or hex lines. If a
- hex line is left with fewer than 33 characters after discarding trailing
- blanks, the ~-nn line is not included. An all-blank line is not represented
- in the text file at all.
-
- 3. Each screen continues until the header for the next. The last screen
- terminates at an end sentinal line,
- ~E0000
-
- 4. The conversion from Block to Text produces the file described
- above, with each screen represented, even if blank, and the screens in
- order (and the lines in order within each screen). The requirements of
- the conversion from Text to Block are more relaxed, in that:
- a. Lines before the first ~Sn line and after the ~E0000 line are
- ignored.
- b. Screens may appear in any order, as may lines within a screen.
- c. Screens not appearing in the text file are set to all blanks.
-
- Getting started:
- The MicroSoft BASIC program TOBLKS.BAS is provided to solve the
- problem of acquiring the Convert Forth program. Download TOBLKS.BAS.
- Download CONBLK.4TH, which is the Forth program. Use TOBLKS.BAS to
- convert CONBLK.4TH into the block file Convert. You will need 50K
- free on your BASIC disk at the start of this process. Copy Convert to
- your Forth disk.
-
- Usage:
- The best way to operate the Convert package is to launch the program
- from Finder by double-clicking the Convert icon. Use the Convert menu
- (the corresponding words are hidden in a vocabulary called
- File.Conversion). Follow the prompts. Return to Finder when finished,
- or execute FORGET File.Conversion to remove the package from
- MacFORTH. (To see each text line read from or written to the text file,
- turn on the Debug item in the Options menu.)
-
- Notice:
- The version of Convert currently available is preliminary. It is not
- robust when errors are encountered. Comments and criticisms will be
- welcomed. Although there is little checking for communication errors,
- the requirement that text file lines being with ~ and specific following
- characters will at least catch failures in which the beginnings of lines
- are dropped.
-
- I desire to improve this program. In particular, I would like to
- provide for checksumming, probably at the screen level, with the
- checksum in hex following the n in ~Sn. Advice would be appreciated,
- particulary as to a good checksum algorithm which is position
- dependent, so that dropped or increased white space is detected.
-
- Contact: John W. Baxter
- 750 State Street
- San Diego, CA 92101
- 619-232-4240
- CIS 71735,1626
- MCI Mail JBaxter (the one in San Diego).
-
-
- Press ENTER to continue: